home *** CD-ROM | disk | FTP | other *** search
- @REM PRINTMAN.BAT; JLS 12/92
- @echo off
- if "%1"=="" goto info
- ECHO Docs for The Letterhead Kit 2.1 for Windows WP will now print...
- ECHO ...
- ECHO The files REGISTER.DOC, LTRWIN21.DOC, and PRODUCTS.DOC will print...
- ECHO VENDOR.DOC contains sysop and vendor information, and may
- ECHO be printed by typing "type vendor.doc >lpt1" from the LETTERHEAD disk.
- @ECHO ...
- type register.doc >%1
- type ltrwin21.doc >%1
- type products.doc >%1
- goto end
- :info
- ECHO Start PRINTMAN.BAT with a device name; for example...
- ECHO PRINTMAN LPT1
- ECHO or:
- ECHO PRINTMAN PRN
- ECHO ...
- :end
- PAUSE